home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #16 / 2001 CD 16 (Black).iso / K-CS.DCR / 00303_SuperDesk Special.ls < prev    next >
Encoding:
Text File  |  2001-10-25  |  1.3 KB  |  43 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 1
  3.   set the visible of sprite (the currentSpriteNum + 1) to 0
  4.   set the visible of sprite (the currentSpriteNum + 2) to 0
  5.   set the visible of sprite (the currentSpriteNum + 3) to 0
  6.   set the visible of sprite (the currentSpriteNum + 4) to 0
  7.   set the visible of sprite 71 to 1
  8. end
  9.  
  10. on mouseEnter me
  11.   set the visible of sprite (the currentSpriteNum + 1) to 1
  12.   set the visible of sprite (the currentSpriteNum + 2) to 1
  13. end
  14.  
  15. on mouseLeave me
  16.   set the visible of sprite (the currentSpriteNum + 1) to 0
  17.   set the visible of sprite (the currentSpriteNum + 2) to 0
  18.   set the visible of sprite (the currentSpriteNum + 3) to 0
  19. end
  20.  
  21. on mouseDown
  22.   set the visible of sprite 52 to 0
  23.   set the visible of sprite 57 to 0
  24.   set the visible of sprite 66 to 0
  25.   set the visible of sprite 71 to 0
  26.   set the visible of sprite (the currentSpriteNum + 3) to 1
  27.   updateStage()
  28. end
  29.  
  30. on mouseUp
  31.   set the visible of sprite (the currentSpriteNum + 3) to 0
  32.   set the visible of sprite (the currentSpriteNum + 4) to 1
  33. end
  34.  
  35. on getBehaviorDescription
  36.   return "Hilite the next two sprites on the stage, and #3 on MouseDown. On mouseup, set one item active."
  37. end
  38.  
  39. on getPropertyDescriptionList
  40.   set p_list to [#MouseCommand: [#format: #string, #comment: "On mouseclick execute this", #default: "beep"]]
  41.   return p_list
  42. end
  43.